home *** CD-ROM | disk | FTP | other *** search
/ The World of Computer Software / The World of Computer Software.iso / prbgi097.zip / BLDBGI.BAT < prev    next >
DOS Batch File  |  1992-12-15  |  449b  |  16 lines

  1. rem Usage: bldbgi  source  [ dest_path  source_path  asm_options ]
  2. tasm    /dWithHeader=0 /ibgidriv /iincl /i%3 /ml /mx %4 %5 %6 %7 %8   %3%1.asm %2%1.obj
  3.     if errorlevel 1 exit
  4. :tlink
  5. tlink %2%1.obj
  6.     if errorlevel 1 exit
  7. exe2bin %2%1.exe %2%1.bin
  8.     if errorlevel 1 exit
  9. del %2%1.exe
  10. bgidriv\bh %2%1.bin %2%1.bgi %1
  11.     if errorlevel 1 exit
  12. del %2%1.bin
  13. bgiobj %2%1.bgi %2%1 %1
  14.     if errorlevel 1 exit
  15. echo ************ O.K ***************
  16.